home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000300_news@newsmaster….columbia.edu _Sat Nov 14 12:37:35 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA06106
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 14 Nov 1998 12:37:34 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA06741
  7.     for kermit.misc@watsun; Sat, 14 Nov 1998 12:37:33 -0500 (EST)
  8. Path: news.columbia.edu!panix!howland.erols.net!newsfeed.direct.ca!nntp.cs.ubc.ca!unixg.ubc.ca!garfield.vcn.bc.ca!not-for-mail
  9. From: dastow@vcn.bc.ca (David Stow)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: check tcp/ip
  12. Date: 14 Nov 1998 17:27:23 GMT
  13. Organization: Vancouver CommunityNet
  14. Lines: 35
  15. Message-ID: <72kehr$1gd$1@garfield.vcn.bc.ca>
  16. References: <7276a4$l10$1@garfield.vcn.bc.ca>
  17. NNTP-Posting-Host: opus.vcn.bc.ca
  18. X-Trace: garfield.vcn.bc.ca 911064443 1549 207.102.64.2 (14 Nov 1998 17:27:23 GMT)
  19. X-Complaints-To: sys-admin@vcn.bc.ca
  20. NNTP-Posting-Date: 14 Nov 1998 17:27:23 GMT
  21. X-Newsreader: TIN [UNIX 1.3 BETA-950824-16colors PL0]
  22. Xref: news.columbia.edu comp.protocols.kermit.misc:9507
  23.  
  24. Thanks for the answers.  I'm going to pester you with a related 
  25. question, but first let me explain what I want to do.
  26.  
  27. I use MS-Kermit 3.15 both for making (relatively) simple serial 
  28. connections and for making TCP/IP connections over a PPP link.  
  29. I use the same serial port and modem in each case, and until recently 
  30. I used the standard mscustom.ini file without trouble. The :NOTCP port 
  31. settings in this file matched those in the PPP initialization file.
  32.  
  33. I recently replaced my 16450 type UART with a 16550A, and when I 
  34. started MS-Kermit over the PPP link, I got a message that Kermit 
  35. couldn't make the connection to my host.  I took a closer look at 
  36. the mscustom.ini file, and I suspected that I should make Kermit 
  37. skip over the commands (like set speed) that could reset the UART 
  38. while the PPP link was running.  When I deleted the :NOTCP part of 
  39. the file and the "if fail forward :NOTCP" command, the TCP/IP 
  40. connection worked again.
  41.  
  42. My guess is that resetting the UART (to the same values that the 
  43. PPP program was using) caused a problem with the 16550A but not with 
  44. the 16450 because of the characters that might be lost from the 
  45. 16550A's buffer during the reset.  Does this sound right?
  46.  
  47. I want to have Kermit check when it starts to see whether the packet 
  48. driver is running, to set the port to tcp/ip and skip the UART 
  49. initialization if it finds the packet driver, and to set the UART 
  50. otherwise.
  51.  
  52. Can I use the tcpip_status variable to do this?  I'm not sure I 
  53. understand the value of this variable.  When I escape from a TCP/IP 
  54. session to the MS-Kermit prompt and give the show variables 
  55. command, \v(tcpip_status)=0.  Is this like opening the refrigerator 
  56. door quickly to try to see if the light stays on when the door is closed?
  57.  
  58. David Stow